compress/flate.huffmanDecoder.chunks (field)
10 uses
compress/flate (current package)
inflate.go#L106: chunks [huffmanNumChunks]uint32 // chunks as described above
inflate.go#L183: if sanity && h.chunks[reverse] != 0 {
inflate.go#L186: h.chunks[reverse] = uint32(off<<huffmanValueShift | (huffmanChunkBits + 1))
inflate.go#L201: for off := reverse; off < len(h.chunks); off += 1 << uint(n) {
inflate.go#L207: if sanity && h.chunks[off] != 0 {
inflate.go#L210: h.chunks[off] = chunk
inflate.go#L214: if sanity && h.chunks[j]&huffmanCountMask != huffmanChunkBits+1 {
inflate.go#L219: value := h.chunks[j] >> huffmanValueShift
inflate.go#L235: for i, chunk := range h.chunks {
inflate.go#L730: chunk := h.chunks[b&(huffmanNumChunks-1)]
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |